home *** CD-ROM | disk | FTP | other *** search
- Path: news.nstn.ca!news
- From: keichele@ac.dal.ca (Klaus Eichele)
- Newsgroups: comp.lang.c++
- Subject: Re: LPCREATESTRUCT
- Date: Wed, 07 Feb 1996 16:47:24 GMT
- Organization: Dalhousie University
- Message-ID: <4fa72b$1pb@news.nstn.ca>
- References: <4f8qum$cck@guitar.sound.net>
- NNTP-Posting-Host: rewasylishen.chem.dal.ca
- X-Newsreader: Forte Free Agent 1.0.82
-
- chris@sound.net (chris) wrote:
-
- >I am unable to determine what lpcreatestruct in doing in the following
- >line of code. It is in a windows procedure, within the code that is
- >executed during the processing of the wm_create message.
-
- >hInstance = ((LPCRETESTRUCT) lParam) -> hInstance;
-
- >If you can point me in the right direction, I would appreciate it.
- >Also, do you know where I might find this in the online documentation
- >for the Borland Compiler (version 4.2).
-
- >Thank You,
-
- >chris@sound.net
-
- Hi,
- the prefix LP indicates that you are dealing with a far pointer, in
- this case to a CREATESTRUCT, a structure containing basically the
- information passed in a CreateWindow() call. If you search the online
- documentation for WM_CREATE or CREATESTRUCT, you should be able to
- find more info.
-
- P.S. comp.os.ms-windows.programmer.* (*= controls or misc) would be
- a more appropriate newsgroup for Windows related questions.
-
- Good Luck,
- Klaus
-
-
- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
- Klaus Eichele keichele@ac.dal.ca
- http://ac.dal.ca/~keichele/keichele.html
-
-